home *** CD-ROM | disk | FTP | other *** search
/ Programming Languages Suite / ProgramD2.iso / Borland / Borland C++ V5.02 / WINSOCK.PAK / SOCKDEMO.H < prev    next >
C/C++ Source or Header  |  1997-05-06  |  631b  |  28 lines

  1. #if !defined(SOCKDEMO_H)
  2. #define SOCKDEMO_H
  3.  
  4. #include <owl/defs.h>
  5. #include "sockdemo.rh" // Definitions of all resources.
  6.  
  7. class SockDemoApp : public TApplication {
  8. public:
  9.     SockDemoApp();
  10.     virtual ~SockDemoApp();
  11.     virtual void InitMainWindow();
  12.  
  13. protected:
  14.     void CmGetWSAData();
  15.     void CmGetMyAddress();
  16.     void CmConvertService();
  17.     void CmConvertAddress();
  18.     void CmSendDatagrams();
  19.     void CmStreamListen();
  20.     void CmStreamConnect();
  21.     void CmShowSocketError();
  22.     void CmHelpAbout();
  23.     void CmHelpHow();
  24.     DECLARE_RESPONSE_TABLE(SockDemoApp);
  25. };
  26.  
  27. #endif  // SOCKDEMO_H
  28.